home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / com / akcl / build-prelude next >
Encoding:
Text File  |  1994-09-27  |  1.1 KB  |  17 lines  |  [TEXT/ttxt]

  1. ript to do this.
  2. (proclaim '(optimize (speed 3) (safety 0) (compilation-speed 0)))
  3. (make-package "MUMBLE-IMPLEMENTATION" :use '("LISP"))
  4. (load "cl-support/cl-init.lisp")
  5. ;; Use the same compiler settings for processing the prelude.
  6. (in-package :mumble-user)
  7. (setf *printers* '(phase-time dump-stat))
  8. ;; The compiler barfs while compiling the interface file for the prelude,
  9. ;; so set the flag for writing it as a source file.
  10. ;; Also have it break up the prelude code file into many small pieces
  11. ;; to avoid overwhelming the C compiler.
  12. (setf *code-chunk-size* 100)
  13. (setf *compile-interface* '#f)
  14. (compile/compile *prelude-unit-filename*)
  15. (lisp:bye)
  16. EOF
  17.